home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 4 / QRZ Ham Radio Callsign Database - Volume 4.iso / files / dsp / 56ktools / a5611.tz / a5611 / examples / thru.a56 < prev   
Text File  |  1992-08-11  |  537b  |  46 lines

  1. ; basic interrupt routine - pass through ins to outs
  2. ;
  3. ; written by Quinn Jensen
  4.  
  5. include 'tdsg.basic.a56'
  6.  
  7. ;***************************************************************
  8. ;
  9. ;    sample rate computations
  10. ;
  11. ;***************************************************************
  12.  
  13. ;
  14. ; non-interrupt code
  15. ;
  16.  
  17. hf_init
  18.     rts
  19.  
  20. eff1_on
  21. eff1_off
  22. eff2_on
  23. eff2_off
  24. eff3_on
  25. eff3_off
  26. eff4_on
  27. eff4_off
  28.     rts
  29.  
  30. ;
  31. ; fs = 32.552083 kHz
  32. ;
  33.  
  34. hf_comp
  35.     jsr    <saveregs
  36.  
  37.     move        x:<in_l,a
  38.     move        a,x:<out_l
  39.     move        x:<in_r,a
  40.     move        a,x:<out_r
  41. bypass
  42.     jsr    <restregs
  43.     rts
  44.  
  45.     end
  46.